home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / protocol / standard / vga / mx68010.txt < prev    next >
Text File  |  1993-07-14  |  939b  |  38 lines

  1. MX 68010   1MB, 1024x768x26colors
  2.  
  3. 3C4h index A7h (W?): Enable extensions
  4. bit 0-7  Writing 87h to this register enables the MXIC extensions,
  5.      writing 0 disables them.
  6.  
  7. 3C4h index C2h (R/W):
  8. bit 2-3  Video RAM installed: 0=256k, 1=512k, 2=1M
  9.  
  10. 3C4h index C3h (R/W):
  11. bit   7  Bus width?. 0=8 bit, 1=16 bit.
  12.  
  13. 3C4h index C5h (R/W): Bank register
  14. bit 0-3  Write bank in 64k blocks.
  15.     4-7  Read bank in 64k blocks
  16.  
  17.  
  18. Test for MXIC chip:
  19.  
  20. wrinx($3C4,$A7,0);     {Disable extensions}
  21. if not testinx($3C4,$c5) then
  22. begin
  23.   wrinx($3C4,$a7,$87);
  24.   if testinx($3C4,$c5) then MXIC!!!;
  25. end;
  26.  
  27.  
  28.   Video modes:
  29.     50h  T   132   25   16 (8x16)
  30.     51h  T   132   30   16 (8x16)
  31.     55h  G   800  600   16 planar
  32.     56h  G  1024  768   16 planar
  33.     57h  G   640  350  256 packed
  34.     58h  G   640  400  256 packed
  35.     59h  G   640  480  256 packed
  36.     5Ah  G   800  600  256 packed
  37.     5Bh  G  1024  768  256 packed 
  38.